home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 012 / quickies.arc / YN.DOC < prev   
Text File  |  1987-03-17  |  625b  |  23 lines

  1. YN - Get a yes (Y) or no (N) response from the user.
  2.  
  3. This program will send the prompt with (Y/N)? appended to the terminal and
  4. wait for the user to press Y or N (upper or lower case),  no other key
  5. accepted.  Upon exit, ERRORLEVEL is set to 0 if N was pressed, or 
  6. ERRORLEVEL is set to 1 if Y was pressed.
  7.  
  8. Call:   YN <prompt>
  9.  
  10. Example:
  11.  
  12.      YN Should I continue
  13.      IF ERRORLEVEL 1 THEN GOTO :YPRESSED 
  14.      IF ERRORLEVEL 0 THEN GOTO :NPRESSED
  15.  
  16.      In the above, the program would display:
  17.  
  18.           Should I continue (Y/N)?
  19.  
  20.  
  21. Entered and debugged by Dave Rich from MS-DOS Power User's Guide 
  22.  
  23.